home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / adatutor / cppwkbk / cppv1-6.cpp < prev    next >
C/C++ Source or Header  |  1996-01-30  |  241b  |  16 lines

  1. #define HEADER "C++ Problem 1.6 by Rick Conn using Borland C++"
  2.  
  3. #include <stdio.h>
  4.  
  5. void print(int value = 1) {
  6.   printf("The value is %2d\n", value);
  7. }
  8.  
  9. void main(void)
  10. {
  11.   printf("%s\n", HEADER);
  12.  
  13.   print();
  14.   print(20);
  15. }
  16.